home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / winsock / ircii2-6.zip / SRC\IRCII-2.6\INCLUDE\INPUT.H < prev    next >
C/C++ Source or Header  |  1994-12-28  |  702b  |  34 lines

  1. /*
  2.  * input.h: header for input.c 
  3.  *
  4.  * Written By Michael Sandrof
  5.  *
  6.  * Copyright(c) 1990 
  7.  *
  8.  * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT 
  9.  *
  10.  * @(#)$Id: input.h,v 1.4 1994/07/02 02:38:10 mrg Stab $
  11.  */
  12.  
  13. #ifndef _INPUT_H_
  14. #define _INPUT_H_
  15.  
  16. extern    char    input_pause();
  17. extern    void    set_input();
  18. extern    void    set_input_prompt();
  19. extern    char    *get_input_prompt();
  20. extern    char    *get_input();
  21. extern    void    update_input();
  22. extern    void    init_input();
  23. extern    void    input_move_cursor();
  24. extern    void    change_input_prompt();
  25. extern    void    cursor_to_input();
  26.  
  27. /* used by update_input */
  28. #define NO_UPDATE 0
  29. #define UPDATE_ALL 1
  30. #define UPDATE_FROM_CURSOR 2
  31. #define UPDATE_JUST_CURSOR 3
  32.  
  33. #endif /* _INPUT_H_ */
  34.